home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / shazam11.zip / CREATE6C.BAT < prev    next >
DOS Batch File  |  1991-11-04  |  2KB  |  34 lines

  1. @echo off
  2. rem ===================================================================
  3. rem "demo6C.def"
  4. rem ===================================================================
  5. echo /////////////////////////////////////////////////////////////////////
  6. echo // Use DOS COPY to create composite definition & help file         //
  7. echo /////////////////////////////////////////////////////////////////////
  8. echo // Generate & compile composite (with special "/HT2" test switch)  //
  9. echo /////////////////////////////////////////////////////////////////////
  10. copy demo1C.def+demo2c.def+demo3c.def+demo4c.def+demo5c.def=demo6C.def
  11. copy demo1C.txt+demo2c.txt+demo3c.txt+demo4c.txt+demo5c.txt=demo6C.txt
  12. echo /////////////////////////////////////////////////////////////////////
  13. echo // Ignore TVHC warning; "/HT2" inserts missing hc.. labels         //
  14. echo /////////////////////////////////////////////////////////////////////
  15. shazam demo6C/c
  16. echo /////////////////////////////////////////////////////////////////////
  17. echo // Run new program                                                 //
  18. echo /////////////////////////////////////////////////////////////////////
  19. demo6C
  20. echo /////////////////////////////////////////////////////////////////////
  21. echo // Let's be neat, and clean up...                                  //
  22. echo /////////////////////////////////////////////////////////////////////
  23. shazam demo6C/del
  24. rem /////////////////////////////////////////////////////////////////////
  25. rem // REM the next 2 lines, for a complete clean-up                   //
  26. rem /////////////////////////////////////////////////////////////////////
  27. rem del demo6C.def
  28. rem del demo6C.txt
  29. cls
  30. echo /////////////////////////////////////////////////////////////////////
  31. echo // The NEW demo6C.def and demo6C.txt files have been created!      //
  32. echo /////////////////////////////////////////////////////////////////////
  33. dir demo6C.*
  34.